html,
body {
	padding: 0;
	margin: 0;
	/* font-family: "微软雅黑"; */
	font-size: 14px;
	line-height: 1.5;
	color: #333;
	background:#242424;
}
.header-container{ background: #121212; }
.base_bg{ background: #8e672e; }
.fs-20{font-size: 20px;}
@font-face {
	font-family: "fontI";
	/* Project id  */
	src: url('../fonts/AlibabaSans-Italic.otf');
}

@font-face {
	font-family: "fontL";
	/* Project id  */
	src: url('../fonts/AlibabaSans-Light.otf');
}

@font-face {
	font-family: "fontM";
	/* Project id  */
	src: url('../fonts/AlibabaSans-Medium.otf');
}

@font-face {
	font-family: "fontR";
	/* Project id  */
	src: url('../fonts/AlibabaSans-Regular.otf');
}



.fontI {
	font-family: "fontI";
}

.fontM {
	font-family: "fontM";
}

.fontL {
	font-family: "fontL";
}

.fontR {
	font-family: "fontR";
}

.iconfont {
	font-family: "iconfont" !important;
	font-size: 16px;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-youjiantou:before {
	content: "\e622";
}

.icon-down:before {
	content: "\e649";
}

.wrap {
	width: 1400px;
	margin: 0 auto;
}

.wrap2 {
	width: 1500px;
	margin: 0 auto;
}

.showDiv {
	display: none;
}

.clearfixed {
	clear: both;
}

a {
	color: #333;
}

ul {
	padding: 0;
	margin: 0;
}

ul li {
	list-style: none;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.arrow-bottom {
	font-size: 0;
	line-height: 0;
	border-width: 10px;
	border-color: red;
	border-bottom-width: 0;
	border-style: dashed;
	border-top-style: solid;
	border-left-color: transparent;
	border-right-color: transparent;
}

/* 向右的箭头 */

.arrow-right {
	font-size: 0;
	line-height: 0;
	border-width: 10px;
	border-color: #f7f7f7;
	border-right-width: 0;
	border-style: dashed;
	border-left-style: solid;
	border-top-color: transparent;
	border-bottom-color: transparent;
}

a,
a:hover,
a:active,
a:visited,
a:link,
a:focus {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
	outline: none;
	text-decoration: none;
	transition-duration: .5s;
	-ms-transition-duration: .5s;
	-moz-transition-duration: .5s;
	-webkit-transition-duration: .5s;
}

p {
	padding: 0;
	margin: 0;
}

a:hover {
	color: #000;
}

img {
	max-width: 100%;

}

.imgDiv {
	overflow: hidden;
}

.imgDiv img {
	max-width: 100%;
	max-height: 100%;
	transition: all 0.5s;
	object-fit: cover;
}

.mask:hover .imgDiv img {
	transform: scale(1.1);
}


input:focus,
button:focus,
textarea:focus {
	outline: none;
}

.ovh {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ovh2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.ovh3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.ovh4 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

/**导航菜单**/
header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #FFFFFF;
	height: 80px;
	transition: all 0.5s;
	/* box-shadow: 0 0 5px #ECEDEE; */
	/*overflow: hidden;*/
	z-index: 9999;
}


header .logo a {
	/* height: 54px; */
	position: relative;
	z-index: 999;
	display: flex;
	justify-content: center;
	align-items: center;
}

header .logo img {
	max-height: 100%;
}

header.on-fixed {
	position: fixed;
	top: 0;
	left: 0;
	background: #FFFFFF;
	box-shadow: 0 0 10px #ccc;
	z-index: 9991;
}


header.on-fixed .rightDiv .menu>ul>li>a {
	/*color: #000;*/
}

header .rightDiv {
	display: flex;
	align-items: center;
}



header .rightDiv .menu {
	text-align: right;
	position: relative;
	height: 80px;
}

header .rightDiv .menu>ul {
	display: inline-block !important;
	/*overflow: hidden;*/
}

header .rightDiv .menu>ul>li {
	float: left;
	position: relative;
	padding: 0 28px;
}


header .rightDiv .menu>ul>li>a {
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #bdbdbd;
	position: relative;
	font-size: 16px;
	line-height: 80px;

}

header .rightDiv .menu>ul>li>a span.down {
	display: inline-block;
	width: 6px;
	height: 6px;
	border: 1px #666 solid;
	transform: rotate(45deg);
	border-top: 0;
	border-left: 0;
	margin-left: 10px;
}


header .rightDiv .menu>ul>li>a::after {
	content: "";
	width: 0;
	height: 3px;
	background: #1674b5;
	position: absolute;
	left: 0;
	bottom: 0px;
	/* transform: translateX(-50%); */
	transition: .5s;
}

header .rightDiv .menu>ul>li:hover>a,
header .rightDiv .menu>ul>li>a:hover,
header .rightDiv .menu>ul>li>a.now {
	color: #fff;
	font-weight: bold;
	border-bottom: 3px solid #fff;
}


header .rightDiv .menu>ul>li:hover>a,
header .rightDiv .menu>ul>li:focus>a,
header .rightDiv .menu>ul>li.on>a,
header .rightDiv .menu>ul>li.active>a {
}

header .rightDiv .menu ul li div.down_list {
	background: rgba(255, 255, 255, 0.8);
	border-radius: 0.625rem;
	margin-top: -0.65rem;
	display: none;
}

header .rightDiv .menu ul li div.down_list ul li a {
	text-align: center;
	display: block;
}

header .mbtn {
	display: inline-block;
	width: 50px;
	height: 50px;
	background: url(../img/menu1.svg) no-repeat center center;
	background-size: 70%;
	position: absolute;
	top: 0;
	right: 0px;
	display: none;
	z-index: 9999;
}


header .mbtn:active {
	opacity: .8;
}

header.header2 .rightDiv .menu>ul>li>a {
	color: #FFFFFF;
	margin: 0 2px;
	position: relative;
	text-transform: capitalize;
}


body.on-menu header .mbtn {
	background: url(../img/menu-hide1.svg) no-repeat center center;
	background-size: 40%;
	z-index: 9999;
}

.menu,
.menu ul li,
.menu ul li a,
.menu #menu-button {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	display: block;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}


.menu #menu-button {
	display: none
}

.menu {
	width: auto;
}

#menu-line {
	position: absolute;
	top: 0;
	left: 0;
	height: 3px;
	background: #b3c9e2;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-ms-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out
}

.menu>ul>li {
	float: left;
}


.menu>ul>li>a {
	padding: 0;
	font-size: 18px;
	text-decoration: none;
	text-transform: uppercase;
	color: #333;
	-webkit-transition: color .2s ease;
	-moz-transition: color .2s ease;
	-ms-transition: color .2s ease;
	-o-transition: color .2s ease;
	transition: color .2s ease;
	min-width: 50px;
}

.menu>ul>li:hover>a,
.menu>ul>li.active>a {
	color: #fff;
}



.menu ul ul {
	width: 135px;
	position: absolute;
	top: 80px;
	padding: 10px 0;
	min-width: 100%;
	left: 50%;
	transform: translate(-50%, 0);
	z-index: 9;
	font-size: 14px;
	opacity: 0;
	visibility: hidden;
	transition: all .5s ease 0s;
	background: #fff;
	box-shadow: 0px 0px 21px 0px rgba(56, 67, 83, 0.16);
}

.menu ul li:hover>ul {

	top: 80px;
	opacity: 1;
	visibility: visible;

}

/*.menu.align-right li:hover>ul{right:0}*/
.menu ul ul ul {
	right: 100%;
	top: 0;
	width: 100%;
}

.menu ul ul li:hover>ul {
	margin-left: 0;
}

.menu ul ul li:hover {
	background-color: #8e672e;
	color: #fff;
}


.menu ul ul li:hover a,
.menu ul ul li:hover span {
	color: #fff;
}




.menu ul ul .ul {
	background: rgba(255, 255, 255, 1);
	box-shadow: 0px 5px 5px rgba(0, 0, 0, .1);
}

.menu ul ul li {
	padding: 0 10px;
	-webkit-transition: height .2s ease;
	-moz-transition: height .2s ease;
	-ms-transition: height .2s ease;
	-o-transition: height .2s ease;
	transition: height .2s ease;
	/* text-align: center; */
}
.menu ul ul li>a {
	font-size: 15px;
	color: #333;
	/* border-bottom: 1px solid #e5e5e5; */
	text-decoration: none;
	-webkit-transition: color .2s ease;
	-moz-transition: color .2s ease;
	-ms-transition: color .2s ease;
	-o-transition: color .2s ease;
	transition: color .2s ease;
	padding: 10px 15px;
	text-align: center;
}

.menu ul ul li>a span {
	margin-right: 10px;
	color: rgba(0, 0, 0, 0.3)
}

.menu ul ul li>a:hover,
.menu ul ul li a:hover {
	/* color: #f05a59; */
	border: 0;
}

.menu ul ul li:last-child>a {
	border: 0;
}


/*顶部电话*/
header .rightDiv .topLx {
	height: 80px;
	margin-left: 90px;
	border-left: 1px #363636 solid;
	padding-left: 20px;
	color: #1c1c1c;
}

header .rightDiv .topLx>ul {
	display: flex;
	align-items: center;
}

header .rightDiv .topLx>ul>li {
	padding: 0 20px;
	position: relative;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}
header .rightDiv .topLx>ul>li:last-child .hideDiv{
	right: 0;
	left: auto;
	transform: translateX(0);
}

header .rightDiv .topLx>ul>li .hideDiv::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	border-width: 10px;
	border-color: #d6a965;
	border-top-width: 0;
	border-style: dashed;
	border-bottom-style: solid;
	border-left-color: transparent;
	border-right-color: transparent;
	z-index: 99;
}
header .rightDiv .topLx>ul>li:last-child .hideDiv::before{
	right: 20px;
	left: auto;
	transform: translateX(0);
}

header .rightDiv .topLx>ul>li .hideDiv {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%);
	width: 234px;
	min-height: 82px;
	background-color: #d6a965;
	padding: 20px 25px;
	color: #1c1c1c;
	display: none;
}

header .rightDiv .topLx>ul>li:hover .hideDiv {
	display: block;
}

header .rightDiv .topLx>ul>li .hideDiv ul {
	display: block;
}

header .rightDiv .topLx>ul>li .hideDiv ul li {
	display: flex;
}

header .rightDiv .topLx>ul>li:nth-child(2) .hideDiv {
	width: 160px;
	padding: 15px;
}

/*banner*/
.bannerIndex .swiper-pagination-bullet {
	width: 30px;
	height: 5px;
	background: #fff;
	border-radius: 0;
}

.youshiDiv {
	margin-top: -60px;
	position: relative;
	z-index: 9;
}

.youshiDiv .textDiv {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #cd9b50;
	min-height: 110px;
	height: 100%;
	padding: 20px 40px;
	border-radius: 5px;
	box-shadow: 0 5px 15px 0 rgba(183, 183, 183, .24);
}

.youshiDiv .textDiv img {
	max-width: 45px;
}

.youshiDiv .textDiv .wenzi {
	width: calc(100% - 60px);
}

.youshiDiv .textDiv .wenzi a{ color: #333333; }
.youshiDiv .textDiv .wenzi a:hover;{ color: #000; }
.youshiDiv .textDiv .wenzi .f8{ color: #505050; }
/*底部*/
footer {
	background-color: #121212;
	color: #c7c7c7;
	padding-bottom: 50px;
}

.navBott {
	padding: 30px 0;
	border-bottom: 1px #484848 solid;
}

.navBott ul {
	display: flex;
	align-items: center;
}

.navBott ul li a {
	display: block;
	padding: 0 30px;
	position: relative;
	color: #888;
}

.navBott ul li a:hover {
	color: #fff;
}

.navBott ul li a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: skewX(-30deg) translateY(-50%);
	height: 16px;
	width: 1px;
	background: #888;
}

.navBott ul li:first-child a {
	padding-left: 0;
}

.navBott ul li:last-child a::after {
	display: none;
}

.xinxiBott {
	display: flex;
	justify-content: space-between;
}

.logoBott {
	padding-right: 80px;
	border-right: 1px #484848 solid;
	width: 280px;
	padding-top: 40px;
}

.telBott {
	width: 315px;
	padding: 0 80px;
	border-right: 1px #484848 solid;

}

.proBott {
	padding: 0 80px;
	border-right: 1px #484848 solid;
	width: 470px;
}

.proBott ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.proBott ul li {
	width: 33%;
}

.proBott ul li a {
	display: block;
	padding: 8px 0;
	color: #c7c7c7;
}

.proBott ul li a:hover {
	color: #fff;
}

.ewmBott {
	padding-left: 110px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.ewmBott p {
	writing-mode: vertical-rl;
	text-align: center;
	font-size: 16px;
	line-height: 25px;
	text-align: center;
	margin-left: 25px;
}

.banquan a{
	color: #888;
}
.banquan a:hover{
	color: #fff;
}

.title1 .line {
	width: 45px;
	height: 1px;
	background-color: #585858;
	margin: 0 auto;
	margin-top: 10px;
}

/*首页内容*/
.gray_c{ color: #939393; }
.indexDiv1 .content .tabDiv {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #bdbdbd;
}
.indexDiv1 .content .tabDiv a{color: #bdbdbd;}
.indexDiv1 .content .tabDiv ul {
	width: calc(100% - 80px);
	display: flex;
	align-items: center;
}

.indexDiv1 .content .tabDiv ul li {
	padding: 0 20px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	margin: 0 3px;
}

.indexDiv1 .content .tabDiv ul li.active,
.indexDiv1 .content .tabDiv ul li:hover {
	background-color: #d6a965;
	color: #fff;
}

.lunboDiv {
	padding: 70px 0 50px 0;
	background: #121212;
}

.indexDiv1 .imgDiv .moreDiv {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, .75);
	opacity: 0;
	z-index: 9;
	transition: all 0.3s;
}

.indexDiv1 .imgDiv .moreDiv img {
	width: 40px;
	height: 40px;
}

.indexDiv1 .textDiv {
	height: 100%;
	background: #fff;
}

.indexDiv1 .textDiv .wenzi {
	padding: 25px 0;
}

.indexDiv1 .textDiv .wenzi .red {
	margin-top: 4px;
}

.indexDiv1 .textDiv:hover .wenzi p {
	color: #fff;
}

.indexDiv1 .textDiv:hover .wenzi {
	background: #8e672e;
}

.indexDiv1 .textDiv:hover .imgDiv .moreDiv {
	opacity: 1;
}

.indexDiv1 .textDiv .imgDiv .moreDiv img {
	margin-top: 50px;
	transition: all 0.3s;
}

.indexDiv1 .textDiv:hover .imgDiv .moreDiv img {
	margin-top: 0;
}

.indexDiv1 .swiper-container {
	padding-bottom: 85px;
}

.indexDiv1 .swiper-button-white {
	top: auto;
	bottom: 0;
	width: 42px;
	height: 42px;
	background-color: #8a8a8a;
	background-size: 30%;
}

.indexDiv1 .swiper-button-white:hover {
	background-color: #d6a965;
}

.indexDiv1 .swiper-button-prev {
	left: calc(50% - 65px);
}

.indexDiv1 .swiper-button-next {
	right: calc(50% - 65px);
}


a.moreBtn {
	width: 42px;
	height: 42px;
	background-color: #8a8a8a;
	margin: 0 2px;
	position: absolute;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 99;
	transition: all 0;
}

a.moreBtn:hover {
	background: #d6a965;
}

.moreBtn {
	width: 42px;
	height: 42px;
	background-color: #8a8a8a;
	margin: 0 2px;
	position: absolute;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 99;
	transition: all 0;
}

.moreBtn:hover {
	background: #8a8a8a;
}

.indexDiv2 {
	background: url(../img/index_bg.jpg) no-repeat center center;
	background-size: cover;
}

.indexDiv2 .textDiv .txt .line {
	width: 60px;
	height: 1px;
	background-color: #ffffff;
	margin: 20px 0;
}

.indexDiv2 .textDiv .wenzi {
	padding: 60px;
	border: solid 1px #ffffff;
	width: calc(100% - 860px);
	height: 580px;
}

.indexDiv2 .textDiv {
	display: flex;
	justify-content: space-between;
}

.indexDiv2 .imgDiv {
	width: 860px;
}

a.more2 {
	width: 122px;
	height: 41px;
	background-color: #ffffff;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #666;
}

a.more2:hover {
	background-color: #8e672e;
	color: #fff;
}

.indexDiv2 .swiper-button-white {
	width: 77px;
	height: 77px;
	background-color: #4f5250;
	background-size: 30%;
}

.indexDiv2 .swiper-button-white:hover {
	background-color: #8e672e;
}

.indexDiv2 .swiper-button-next {
	left: 510px;
	top: 170px;
}

.indexDiv2 .swiper-button-prev {
	right: auto;
	left: 510px;
	top: 270px;
}

.indexDiv3 {
	padding-top: 94px;
	padding-bottom: 80px;
	background: #cd9b50;
	/* padding-bottom: 125px; */
}

.indexDiv3 .wrap {
	position: relative;
	z-index: 9;
	display: flex;
	justify-content: space-between;
}

.indexDiv3 .wenzi {
	width: 560px;
	padding-top: 0px;
}

.indexDiv3 .wenzi ul {
	display: flex;
	flex-wrap: wrap;
}

.indexDiv3 .wenzi ul li {
	margin-right: 55px;
	text-align: center;
}

.lxdh {
	width: 283px;
	height: 69px;
	background-color: #ffffff;
	border-radius: 34px;
	border: solid 1px #8e672e;

}

.tel_num {
	font-family: Impact;
	color: #8e672e;
	margin-left: 22px;
}


.indexDiv3 .wenzi ul li .iconDiv {
	width: 78px;
	height: 78px;
	border: solid 1px #000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	margin-bottom: 15px;
	padding: 10px;
}

.indexDiv3 .wenzi ul li:hover .iconDiv {
	background-color: #000;
	border: solid 1px #000;
}

.indexDiv3 .wenzi ul li:hover .iconDiv img {
	filter: grayscale(200) brightness(200);
}

.indexDiv3 .imgDiv {
	max-width: 734px;
}

.indexDiv3::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 60%;
	height: 82%;
	z-index: 1;
}

.indexDiv3::after {
	position: absolute;
	content: "";
	bottom: 10px;
	right: 0;
	width: 60%;
	height: 200px;
	z-index: 1;
}

.indexDiv4 {
	padding: 85px 0;
}
.indexDiv4 .f8{ color: #505050; }


.indexDiv4 .textDiv {
	border-radius: 5px;
	overflow: hidden;
	height: 100%;
}

.indexDiv4 .textDiv .wenzi {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9;
	padding: 50px 55px;
	background: #cd9b50;
}

.indexDiv4 .textDiv:hover .wenzi,
.indexDiv4 .textDiv:hover .wenzi .f8 {
	background: none;
	color: #fff !important;
}

.indexDiv4 .textDiv:hover .wenzi>img {
	filter: grayscale(200) brightness(200);
}

.indexDiv4 .textDiv:hover .wenzi .line {
	background: #fff;
}

.indexDiv4 .textDiv .wenzi .line {
	width: 29px;
	height: 2px;
	background-color: #333333;
	margin: 25px 0;
}

.indexDiv4 .col-lg-3 {
	padding: 0 12px;
}

.indexDiv4 .row {
	margin: 0 -12px;
}

.indexDiv5 {
	background-color: #272727;
	padding: 0 5.677vw;
	padding-top: 65px;
	padding-bottom: 70px;
}

.indexDiv5 .textDiv {
	height: 100%;
	background-color: #e5e5e5;
	padding: 10px;
	text-align: center;
	position: relative;
}

.indexDiv5 .textDiv::before {
	content: "";
	position: absolute;
	width: 0%;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	z-index: 2;
	height: 3px;
	background-color: #8e672e;
	transition: all 0.5s;
}

.indexDiv5 .textDiv:hover::before {
	width: 100%;
}

.indexDiv5 .textDiv .wenzi {
	padding: 20px;
	padding-bottom: 10px;
}

.indexDiv5 .swiper-container {
	padding-bottom: 90px;
}


.indexDiv5 .swiper-button-white {
	top: auto;
	bottom: 0;
	width: 42px;
	height: 42px;
	background-color: #8a8a8a;
	background-size: 30%;
}

.indexDiv5 .swiper-button-white:hover {
	background-color: #d6a965;
}

.indexDiv5 .swiper-button-prev {
	left: calc(50% - 65px);
}

.indexDiv5 .swiper-button-next {
	right: calc(50% - 65px);
}

a.more3 {
	width: 122px;
	height: 41px;
	border: 1px solid #333333;
	border-radius: 20px;
	color: #333333;
}

a.more3:hover {
	background: #d6a965;
	color: #fff;
	border: 1px solid #fff;
}

.zhaoshang {
	width: 660px;
}

.newsDiv {
	width: 675px;
}
.indexDiv6 { background: #cd9b50; }
.indexDiv6 .wrap {
	display: flex;
	justify-content: space-between;
}

.newsDiv ul li {
	margin-bottom: 10px;
}

.newsDiv ul li .textDiv {
	border: solid 1px #dbdbdb;
	padding: 23px 28px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	position: relative;
	background: #e5e5e5;
}

.newsDiv ul li .textDiv .date {
	width: 76px;
	height: 76px;
	background-color: #c6c6c6;
	padding: 20px 15px;
	color: #fff;

}
.newsDiv ul li .textDiv .wenzi {
	width: calc(100% - 110px);
}

.newsDiv ul li .textDiv::before {
	content: "";
	position: absolute;
	width: 0%;
	left: 0;
	bottom: 0;
	z-index: 2;
	height: 3px;
	background-color: #8e672e;
	transition: all 0.5s;
}

.newsDiv ul li .textDiv:hover::before {
	width: 100%;
}
.bannerIndex{
	margin-top: 80px;
}
.menuNav{
	display: none;
}

/*PHONE屏幕下的专用样式*/
@media screen and (max-width:992px) {


	.wrap,
	.wrap2 {
		width: 92%;
		margin: 0 auto;
		font-size: 14px;
	}

	.showDiv {
		display: block;
	}

	.menu {
		width: 100%
	}

	.menu ul {
		width: 100%;
		display: block;
	}

	.menu ul ul {
		top: 0;
		border: 0;
		box-shadow: none;
		border-top: 1px #eee solid;
		display: none;
	}

	.menu ul ul .ul {
		background: #fff;
		box-shadow: none !important;
		border-radius: 0;
	}

	.menu>ul>li>a {
		padding: 0 20px;
	}

	.menu.align-center>ul,
	.menu.align-right ul ul {
		text-align: left
	}

	.menu ul li,
	.menu ul ul li,
	.menu ul li:hover>ul>li {
		width: 100%;
		height: auto;
		border-top: 1px solid rgba(255, 255, 255, .3)
	}

	.menu ul li:hover>ul {
		top: 0;
	}

	.menu ul li a,
	.menu ul ul li a {
		width: 100%
	}

	.menu>ul>li,
	.menu.align-center>ul>li,
	.menu.align-right>ul>li {
		float: none;
		display: block
	}

	.menu ul ul li a {
		padding: 0 20px 0 30px;
		font-size: 12px;
		background: 0 0
	}

	/*.menu ul ul li:hover>a,.menu ul ul li a:hover{color:#fff}*/
	.menu ul ul ul li a {
		padding-left: 40px
	}

	.menu ul ul,
	.menu ul ul ul {
		position: relative;
		left: 0;
		right: auto;
		width: 100%;
		margin: 0
	}

	.menu>ul>li.has-sub>a::after,
	.menu ul ul li.has-sub>a::after {
		display: none
	}

	#menu-line {
		display: none
	}

	.menu #menu-button {
		display: block;
		padding: 20px;
		color: #000;
		cursor: pointer;
		font-size: 12px;
		text-transform: uppercase
	}

	.menu #menu-button::after {
		content: '';
		position: absolute;
		top: 20px;
		right: 20px;
		display: block;
		width: 15px;
		height: 2px;
		background: #fff
	}

	.menu #menu-button::before {
		content: '';
		position: absolute;
		top: 25px;
		right: 20px;
		display: block;
		width: 15px;
		height: 3px;
		border-top: 2px solid #fff;
		border-bottom: 2px solid #fff
	}

	.menu .submenu-button {
		position: absolute;
		z-index: 10;
		right: 0;
		top: 0;
		display: block;
		border-left: 1px solid #eee;
		height: 52px;
		width: 52px;
		cursor: pointer
	}

	.menu .submenu-button::after {
		content: '';
		position: absolute;
		top: 21px;
		left: 26px;
		display: block;
		width: 1px;
		height: 11px;
		background: #999;
		z-index: 99;
		/* transform: rotate(45deg); */
	}

	.menu .submenu-button::before {
		content: '';
		position: absolute;
		left: 21px;
		top: 26px;
		display: block;
		width: 11px;
		height: 1px;
		background: #999;
		z-index: 99;
	}

	.menu .submenu-button.submenu-opened:after {
		display: none
	}

	.menu ul ul {
		background: transparent;
		border-bottom: none;
		padding: 0;
		border-top: 0;
	}

	.menu ul ul ul {
		top: 0;
	}

	.menu li:hover>ul {
		left: auto;
		margin-left: auto;
	}

	.menu ul ul li>a:last-child {
		border-bottom: 0;
	}

	header .rightDiv .menu ul li ul li {
		border-bottom: 1px #eee dashed;
		border-top: 0;
	}

	header .rightDiv .menu ul li ul li:last-child {
		border: 0;
	}

	header .logo {

		margin-left: 0;
	}

	header .logo img {
		max-height: 20px;
	}

	header .logo a {
		/* height: 35px; */

	}

	.menu ul ul {
		visibility: visible;
		opacity: 1;
		width: 100%;
		left: 0;
		transform: translate(0, 0);
	}

	header .wrap {
		display: block;
		height: 50px;
	}


	header.header2 .rightDiv .menu>ul>li>a {
		color: #333;
	}

	header {
		position: fixed !important;
		z-index: 9991;
		top: 0;
		left: auto;
		right: 0;
		width: 100%;
		height: 50px;
		padding-top: 0;
		background: #fff;
		box-shadow: 0 0 1px 0 #ccc;
		/* background: #000; */
		/*background-color: transparent;*/
		transition: right 300ms !important;
	}

	header.header2 {
		background: #FFFFFF;
		border: 0;
		box-shadow: 0 0 5px #EEEEEE;
	}



	.on-fixed header {
		box-shadow: 0px 0px 10px rgba(0, 0, 0, .1);
	}



	/*body.on-menu header {right: 45%;}*/
	header .mbtn {
		display: block;
	}

	body.on-menu header .mbtn {
		z-index: 9999;
	}

	header .rightDiv .menu {
		float: right;
		position: fixed;
		top: 50px;
		right: 0;
		width: 100%;
		height: 100%;
		padding-top: 0;
		/* background-color: rgba(0, 0, 0, 0.9); */
		background: #fff;
		border-bottom: 1px solid #f8f8f847;
		transition: right 300ms;
		right: -100%;
		padding: 0;
		z-index: 9999;
		overflow-y: auto;
		text-align: center;
		margin-top: 0;
		padding-bottom: 50px;
	}

	header .rightDiv .menu ul>li {
		padding: 0;
		margin: 0;
		border-bottom: 1px solid #eee;
		float: none;
		width: 100%;
	}

	header .rightDiv .menu ul>li:first-child {
		border-top: 1px #eee solid;
	}

	header .rightDiv .menu ul li a {
		display: block;
		line-height: 50px;
		height: 50px;
		color: #333;
		/*padding: 0 15px;*/
		text-align: left;
		font-size: 16px;
		font-weight: normal;
	}

	header .rightDiv .menu>ul>li>a.now::after,
	header .rightDiv .menu>ul>li:hover>a::after {
		display: none;
	}

	header .rightDiv .menu>ul>li>a.login {
		width: 80px;
		margin: 10px 0;
		margin-left: 20px;
		text-align: center;
	}

	header .rightDiv .menu>ul>li>a small {
		display: none;
	}

	header .rightDiv .menu>ul {
		display: block;
		/* padding-top: 60px; */
		width: 100%;
	}

	body.on-menu header .rightDiv .menu {
		right: 0;
	}

	body.on-menu .main {
		right: 0;
	}

	header .rightDiv .menu>ul>li>a {
		padding: 0 20px;
		background: none;
		margin: 0;
		width: 100%;
		color: #333;
	}

	header .rightDiv .menu ul li i {
		display: block;
	}

	header .twoMenu {
		position: relative;
		top: 0px;
		background: none;
		padding: 0;
		width: initial;
	}

	header .twoMenu dl {
		margin-bottom: 10px;
	}

	header .twoMenu dl dd {
		margin-top: 0;
	}

	header .rightDiv .menu ul li .twoMenu dl dt>a {
		color: #fff;
	}

	.on-fixed header .rightDiv .menu ul li .twoMenu dl dt>a {
		color: #000;
	}

	header .rightDiv .menu ul li .twoMenu {
		top: 10px;
		box-shadow: none;
	}

	header .rightDiv .menu ul li .twoMenu .liDiv>a {
		line-height: 32px;
		height: 32px;
		font-weight: normal;
	}

	header .twoMenu .liDiv>a:after {
		top: 0;
	}

	header .rightDiv .menu ul li.relativeLi .twoMenu .ulDiv {
		margin: 0 15px;
	}



	header .rightDiv .menu ul li .twoMenu dl dt>a {
		line-height: 50px;
		height: initial;
	}

	header .rightDiv .menu>ul>li>a::before {
		display: none;
	}

	header .rightDiv .menu>ul>li:hover,
	header .rightDiv .menu>ul>li:focus,
	header .rightDiv .menu>ul>li.on {
		background: none;
	}

	header .rightDiv .menu>ul>li.on>a {
		color: #204e9e;
	}

	header .rightDiv .menu>ul>li>a:hover span,
	header .rightDiv .menu>ul>li>a.now span {
		display: none;


		/* background: #3fba9e;
		border-bottom: 2px #3fba9e solid; */
	}



	.hideDiv {
		display: none;
	}

	header .rightDiv .topLx {
		height: 50px;
		margin-left: 10%;
		padding-left: 0;
		margin-right: 50px;
		border: 0;
	}

	header .rightDiv .topLx>ul>li {
		padding: 0 15px;
		height: 50px;
	}

	.bannerIndex {
		margin-top: 0px;
	}

	.bannerIndex .swiper-slide img {
		/*min-height: 200px;*/ 
		object-fit: cover;
	}

	.youshiDiv .textDiv {
		padding: 10px;
		display: block;
		text-align: center;
	}

	.youshiDiv .textDiv .wenzi {
		width: 100%;
	}

	.youshiDiv .textDiv img {
		width: 35px;
	}

	.youshiDiv .row {
		margin: 0 -8px;
	}

	.youshiDiv .col-lg-3 {
		padding: 0 8px;
		margin-bottom: 15px;
		font-size: 12px;
	}

	.youshiDiv .textDiv .font22 {
		font-size: 15px;
	}

	.youshiDiv {
		margin-top: 15px;
	}

	.indexDiv1 .content .tabDiv {
		flex-wrap: wrap;
	}

	.indexDiv1 .content .tabDiv ul {
		width: 100%;
		flex-wrap: wrap;
		margin-top: 20px;
	}

	.indexDiv1 .content .tabDiv ul li {
		width: 33.33%;
		padding: 0 10px;
		font-size: 14px;
		margin-bottom: 10px;
		margin: 0;
	}

	.lunboDiv {
		padding: 40px 0;
	}

	.indexDiv1 .swiper-button-next {
		right: calc(50% - 59px);
	}

	.indexDiv1 .swiper-button-prev {
		left: calc(50% - 59px);
	}

	.indexDiv1 .swiper-button-white,
	a.moreBtn,
	.indexDiv2 .swiper-button-white,
	.indexDiv5 .swiper-button-white{
		width: 36px;
		height: 36px;
	}

	.indexDiv1 .swiper-container {
		padding-bottom: 60px;
	}

	.indexDiv2 .textDiv {
		display: block;
	}

	.indexDiv2 .textDiv .wenzi {
		width: 100%;
		padding: 20px;
		height: auto;
	}

	.indexDiv2 .imgDiv {
		width: 100%;
	}

	.font16 {
		font-size: 14px;
	}

	.font18 {
		font-size: 14px;
	}

	a.more2 {
		width: 120px;
		height: 35px;
	}

	.par100 {
		padding: 50px 0;
	}

	.indexDiv2 .swiper-container {
		padding-bottom: 60px;
	}

	.indexDiv2 .swiper-button-white {
		top: auto;
		bottom: 0;
	}

	.indexDiv2 .swiper-button-prev {
		left: calc(50% - 38px);
	}

	.indexDiv2 .swiper-button-next {
		right: calc(50% - 38px);
		left: auto;
	}

	.indexDiv2 .swiper-slide {
		padding: 10px;
	}

	.indexDiv3 .wrap {
		display: block;
	}

	.indexDiv3 .wenzi {
		width: 100%;
	}

	.indexDiv3 .wenzi ul li .iconDiv {
		width: 55px;
		height: 55px;
	}

	.indexDiv3 .wenzi ul li .iconDiv img {
		width: 25px;
	}

	.tel_num {
		font-size: 20px;
	}

	.lxdh {
		width: 225px;
		height: 50px;
	}
	.lxdh img{
		height: 20px;
	}
	.indexDiv3 .imgDiv{
		width: 100%;
		margin-top: 20px;
	}
	.indexDiv3{
		padding-top: 30px;
	}
	.indexDiv3::after{
		bottom: -20px;
	}
	.indexDiv4 .textDiv .wenzi{
		padding: 20px;
		position: relative;
	}
	.indexDiv4 .textDiv .imgDiv{
		display: none;
	}
	.indexDiv4 .col-lg-3{
		margin-bottom: 20px;
		padding: 0 8px;
	}
	.indexDiv4 .row{
		margin: 0 -8px;
	}
	.indexDiv4 .textDiv .wenzi img{
		width: 30px;
	}
	.indexDiv4 .textDiv .wenzi .mt20{
		margin-top: 10px;
		font-size: 18px;
	}
	.indexDiv4 .textDiv .wenzi .line{
		margin: 15px 0;
	}
	.indexDiv4 .textDiv:hover .wenzi{
		background-color: #8e672e
	}
	.indexDiv4{
		padding-top: 60px;
		padding-bottom: 40px;
	}
	.newsDiv{
		width: 100%;
		margin-top: 30px;
	}
	.indexDiv6 .wrap{
		display: block;
	}
	.zhaoshang{
		width: 100%;
	}
	.par80{
		padding: 40px 0;
	}
	.navBott ul{
		flex-wrap: wrap;
	}
	.navBott ul li a{
		padding: 0;
		margin-right: 20px;
		margin-bottom: 10px;
	}
	.navBott ul li a::after{
		display: none;
	}
	.xinxiBott{
		display: block;
		
	}
	.navBott{
		padding-bottom: 15px;
		margin-bottom: 30px;
	}
	.logoBott{
		width: 100%;
		padding-top: 0;
		border: 0;
		padding-right: 0;
	}
	.logoBott a img{
		height: 50px;
	}
	.telBott,
	.proBott{
		width: 100%;
		padding: 0;
		border: 0;
		margin-top: 20px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.telBott img,
	.proBott img{
		width:50px;
	}
	.telBott .txt,
	.proBott .txt{
		width: calc(100% - 70px);
	}
	.ewmBott{
		width: 100%;
		padding-left: 0;
		justify-content: center;
		margin: 40px 0;
	}
	.ewmBott img{
		width: 140px;
	}
	.newsDiv ul li .textDiv{
		padding: 15px 20px;
	}
	.newsDiv ul li .textDiv .wenzi {
	    width: calc(100% - 90px);
	}
	
	.menuNav{
		margin-top: 50px;
		display: block;
	}
	.menuNav ul{
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		background: #8e672e;
		position: relative;
	}
	.menuNav ul::before{
		content: "";
		top: 50%;
		background-color: rgba(255, 255, 255, .1);
		width: 100%;
		height: 1px;
		left: 0;
		position: absolute;
		z-index: 9;
	}
	.menuNav ul li{
		width: 25%;
		
	}
	.menuNav ul li a{
		display: block;
		padding: 10px;
		text-align: center;
		font-size: 14px;
		background: #8e672e;
		color: #fff;
	}
	.menuNav ul li a.now{
		color: #fff;
		background-color: rgba(255, 255, 255, .5);
	}
	.proBott,
	.ewmBott{
		display: none;
	}
	.banquan{
		margin-top: 50px;
	}
	.footer_nav{ margin-bottom: 50px; }
	.dv-1-hd{display: none;}
	#page_banner{ margin-top: 3px; display: none; }
	.de-page-mian .page-inner a.page-btn {
	    display: none;
	}
	.de-page-mian .page-inner span {
	    display: none; color: #f00;
	}
	.de-page-mian .page-inner input {
	    display: none;
	}
	/*.indexDiv3::before{ background: #fff; }*/
	/*.layui-layer{ width: 96%; }*/
	#order_pro_nav{ width: 300px; }
	#layui-layer1{ width: 95%; }
	.in_pro_img{ height: auto; }
	.slider_type{ margin-top: 30px; }
	header .rightDiv .menu>ul>li>a.now {
		color: #000;
		font-weight: bold;
		border-bottom: 3px solid #fff;
	}
	#box1{ margin-top: -3rem; }
	.indexDiv3 .wenzi ul li{ margin-right: 40px; }
	header .rightDiv .menu>ul>li:hover>a,
	header .rightDiv .menu>ul>li>a:hover,
	header .rightDiv .menu>ul>li>a.now {
		color: #333;
	}
}
/*PAD屏幕下的专用样式*/
@media screen and (min-width: 768px) and (max-width:992px) {
	.indexDiv1 .content .tabDiv ul li{
		width: 150px;
	}
	.dv-2-hd{display: none;}
	.in_pro_img{ height: 300px; }
}

/*中等PC屏幕下的专用样式*/
/*@media screen and (min-width:993px) and (max-width:1200px) {
	.wrap {
		width: 95%;
	}
	.youshiDiv .textDiv{
		padding: 20px 15px;
	}
	.font22{
		font-size: 18px;
	}
	.indexDiv2 .textDiv .wenzi {
	    padding: 20px 20px;
	    border: solid 1px #ffffff;
	    width: 40%;
	    height: 339px;
	}
	.indexDiv2 .textDiv .wenzi {
	    padding: 20px 20px;
	    border: solid 1px #ffffff;
	    width: 35%;
	    height: 367px;
	}
	.font34{
		font-size: 30px;
	}
	.indexDiv2 .imgDiv{
		width: 65%;
	}
	.indexDiv3 .imgDiv{
		width: 50%;
		margin-top: 70px;
	}
	.indexDiv3 .wenzi{
		width: 45%;
	}
	.indexDiv3::after {
	    position: absolute;
	    content: "";
	    bottom: 77px;
	    right: 0;
	    width: 60%;
	    height: 245px;
	    background-color: #8e672e;
	    z-index: 1;
	}
	.font30{
		font-size: 26px;
	}
	.indexDiv4 .textDiv .wenzi{
		padding: 30px;
	}
	.indexDiv4 .textDiv .imgDiv img{
		height: 300px;
	}
	.zhaoshang{
		width:50%;
	}
	.newsDiv{
		width: 48%;
	}
	.newsDiv ul li .textDiv{
		padding: 15px;
	}
	.telBott,
	.proBott{
		padding: 0 30px;
	}
	.indexDiv2 .textDiv .wenzi .mt40{
		margin-top: 15px;
	}
	.dv-3-hd{display: none;}

}*/
/*中等PC屏幕下的专用样式*/
@media screen and (min-width:993px)and (max-width:1200px) {
	.wrap{
		width: 992px;
	}
	.wrap2{
		width: 990px;
	}
	header .rightDiv .menu>ul>li{
		padding: 0 10px;
	}
	header .rightDiv .topLx{
		margin-left: 40px;
	}
	.youshiDiv .textDiv{
		padding: 20px;
	}
	.indexDiv2 .imgDiv {
	    width: 695px;
	}
	.indexDiv2 .textDiv .wenzi{
		width: calc(100% - 695px);
		padding: 40px 50px;
		height: 405px;
	}
	.indexDiv2 .textDiv .wenzi .txt{
		margin-top: 25px;
	}
	.indexDiv2 .textDiv a.more2{
		margin-top: 30px;
	}
	.indexDiv2 .swiper-button-next,
	.indexDiv2 .swiper-button-prev{
	    left: 423px;
	}
	.indexDiv4 .textDiv .imgDiv img{
		height: 300px;
	}
	.indexDiv4 .textDiv .wenzi {
	    position: absolute;
	    width: 100%;
	    height: 100%;
	    top: 0;
	    left: 0;
	    z-index: 9;
	    padding: 40px 45px;
	    background: #f1f1f1;
	}
	.zhaoshang{
		width: 53%;
	}
	.newsDiv{
		width: 43%;
	}
	.newsDiv ul li .textDiv{
		padding: 18px 22px;
	}
	.telBott,
	.proBott{
		padding: 0 50px;
	}
	.indexDiv3 .wenzi{
		width: 480px;
	}
	.indexDiv3 .imgDiv{
		width: 650px;
	}
	.dv-4-hd{display: none;}
	.de-page-mian .page-inner span {
	    display: block;
	    font-size: 14px;
	    color: #343434;
	    float: left;
	    line-height: 32px;
	    margin: 0 2px;
	}

	.de-page-mian .page-inner input {
	    display: block;
	    float: left;
	    border: 0;
	    height: 32px;
	    width: 32px;
	    border-radius: 0;
	    text-align: center;
	    line-height: 32px;
	    font-size: 14px;
	    background-color: #ededed;
	    color: #333;
	    margin: 0 2px;
	}
	.in_pro_img{ height: 200px; }
	#img_height img{ height: 405px; width: 720px; }
	.dv-3-hd{display: none;}
}
/*常规PC屏幕下的专用样式*/
@media screen and (min-width:1201px)and (max-width:1440px) {
	.wrap{
		width: 1150px;
	}
	.wrap2{
		width: 1200px;
	}
	header .rightDiv .menu>ul>li{
		padding: 0 15px;
	}
	header .rightDiv .topLx{
		margin-left: 40px;
	}
	.youshiDiv .textDiv{
		padding: 20px;
	}
	.indexDiv2 .imgDiv {
	    width: 695px;
	}
	.indexDiv2 .textDiv .wenzi{
		width: calc(100% - 695px);
		padding: 40px 50px;
		height: 405px;
	}
	.indexDiv2 .textDiv .wenzi .txt{
		margin-top: 25px;
	}
	.indexDiv2 .textDiv a.more2{
		margin-top: 30px;
	}
	.indexDiv2 .swiper-button-next,
	.indexDiv2 .swiper-button-prev{
	    left: 423px;
	}
	.indexDiv4 .textDiv .imgDiv img{
		height: 300px;
	}
	.indexDiv4 .textDiv .wenzi {
	    position: absolute;
	    width: 100%;
	    height: 100%;
	    top: 0;
	    left: 0;
	    z-index: 9;
	    padding: 40px 45px;
	    background: #f1f1f1;
	}
	.zhaoshang{
		width: 53%;
	}
	.newsDiv{
		width: 43%;
	}
	.newsDiv ul li .textDiv{
		padding: 18px 22px;
	}
	.telBott,
	.proBott{
		padding: 0 50px;
	}
	.indexDiv3 .wenzi{
		width: 480px;
	}
	.indexDiv3 .imgDiv{
		width: 650px;
	}
	.dv-4-hd{display: none;}
	.de-page-mian .page-inner span {
	    display: block;
	    font-size: 14px;
	    color: #343434;
	    float: left;
	    line-height: 32px;
	    margin: 0 2px;
	}

	.de-page-mian .page-inner input {
	    display: block;
	    float: left;
	    border: 0;
	    height: 32px;
	    width: 32px;
	    border-radius: 0;
	    text-align: center;
	    line-height: 32px;
	    font-size: 14px;
	    background-color: #ededed;
	    color: #333;
	    margin: 0 2px;
	}
	.in_pro_img{ height: 260px; }
	#img_height img{ height: 405px; width: 860px; }
}
/*大PC屏幕下的专用样式*/
@media screen and (min-width:1441px)and (max-width:2920px) {
	.wrap2{
		width: 1400px;
	}
	#page_banner_box img {
        position: relative;
        width: 100%;
        height: auto;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .dv-5-hd{display: none;}
    .slider_type{ width: 300px; }
    .slider_contact{
    	width: 300px;
    	line-height: 32px;
    }
    .slider_type_list li {
	    position: relative;
	    padding-right: 5px !important;
	    width: 280px;
	}
	#page_right{
		margin-left: 20px;
		padding-top: -20px;
	}
	#page_banner{ margin-top: 10px; }
	.swiper-container-horizontal>.swiper-pagination-bullets,
	.swiper-pagination-custom,
	.swiper-pagination-fraction {
		bottom: 90px;
	}
	.text_box{
		margin-left: 30px;
	}
	.de-page-mian .page-inner span {
	    display: block;
	    font-size: 14px;
	    color: #343434;
	    float: left;
	    line-height: 32px;
	    margin: 0 2px;
	}

	.de-page-mian .page-inner input {
	    display: block;
	    float: left;
	    border: 0;
	    height: 32px;
	    width: 32px;
	    border-radius: 0;
	    text-align: center;
	    line-height: 32px;
	    font-size: 14px;
	    background-color: #ededed;
	    color: #333;
	    margin: 0 2px;
	}
	#layui-layer1{ width: 50%; }
	.in_pro_img{ height: 260px; }
	#img_height img{ height: 580px; width: 860px; }

}
#img_height img { border: 10px solid #fff; }
/*SLIDER*/
.slider_type_list{
	background: #f4f6f8;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.slider_type_list li {
    position: relative;
    padding-right: 5px !important;
}

.slider_type_list li .item {
    border-bottom: 1px solid #d7d4d4;
    position: relative;
    font-size: 16px;
}
.slider_type_list li .item:hover {
    background: #8e672e;
    color: #fff;
}

.slider_type_list li.active .item {
    color: #ffffff;
    background-color: var(--base_color);
    border: 1px solid var(--base_color);
    position: relative;
}

.slider_type_list li.active:after {
    display: block;
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    z-index: 1;
    border-top: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid var(--base_color);
    left: auto;
    right: -5px;
    margin-top: 0px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}
.left_pro_title{
	font-size: 24px;
}
.left_pro_title_s{
	font-size: 14px;
}
.slider_contact{
	font-size: 16px;
}


/*子页*/
h1{ text-align: center; margin: auto; border-bottom: 1px dotted #ccc; padding-bottom: 30px; }
#page_right{
	font-size: 16px;
	line-height: 32px;
	background: #fff;
	padding: 20px 20px 20px 30px ;
}
.page_title {
    border-bottom: 1px solid #ccc;
}
.right_title{
	border-left: 6px solid #8e672e;
	font-size: 24px;
	padding-left: 10px;
}

.ImgScale img {
    transition: all 0.3s;
}

.ImgScale:hover img {
    /*transform: scale(1.05);*/
}
.imgbox {
    position: relative;
    overflow: hidden;
}

.imgbox:after {
    content: '';
    display: block;
}


.hover_brightness {
    transition: all 0.3s;
}

.hover_brightness:hover {
    filter: brightness(120%);
}

.hover_brightness-lg {
    transition: all 0.3s;
}

.hover_brightness-lg:hover {
    filter: brightness(200%);
}

.hover_base_bg {
    background: #cecece;
}

.hover_base_bg:hover {
    background: #8e672e;
    color: #fff !important;
}

.hover_base_bg:hover * {
    color: #fff !important;
}

.hover_base_bg:hover .line {
    width: 80%;
}
.page-a {
    padding: 10px 0;
}

.page-a a {
    border-radius: 3px;
    margin-top: -10px;
    float: right;
    width: calc(98% - 60px);
    display: inline-block;
    border: 1px dotted #efefef;
    padding: 10px;
    background-color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-a a:hover {
    background-color: var(--base_color);
    border: 1px dotted var(--base_color);
    color: #fff;
}
#tpl_news .img_box { width: 38%; max-width: 180px; }
/*PAGE

----------------------------------------*/
.de-page-mian {
    overflow: hidden;
    text-align: center;
    font-size: 0;
}

.de-page-mian .page-inner {
    display: inline-block;
    overflow: hidden;
}

.de-page-mian .page-inner a {
    display: block;
    float: left;
    width: 32px;
    margin: 2px;
    padding: 0 2px;
    height: 32px;
    border: 1px solid #dddddd;
    background: #fff;
    text-align: center;
    line-height: 32px;
    font-size: 14px;
    color: #333;
    overflow: hidden;
}

.de-page-mian .page-inner a.active,
.de-page-mian .page-inner a:hover {
    color: #fff;
    border-color: var(--base_color);
    background: var(--base_color);
}

.de-page-mian .page-inner a.prev {
    margin-left: 0;
    background: #fff url(../img/prev.jpg) no-repeat center;
}

.de-page-mian .page-inner a.prev.on {
    background: #fff url(../img/prev-hover.jpg) no-repeat center;
}

.de-page-mian .page-inner a.prev:hover {
    background-color: #fff;
    border-color: #dddddd;
}

.de-page-mian .page-inner a.next {
    background: #fff url(../img/next.jpg) no-repeat center;
}

.de-page-mian .page-inner a.next.on {
    background: #fff url(../img/next-hover.jpg) no-repeat center;
}img

.de-page-mian .page-inner a.next:hover {
    background-color: #fff;
    border-color: #dddddd;
}

.de-page-mian .page-inner a.page-btn {
    font-size: 14px;
    margin-right: 20px;
    width: 50px;
    height: 32px;
    line-height: 32px;
}


#dituContent{ height: 25vw;}
.mainInfo {
    color: #333333;
}

.singleInfo iframe,
.mainInfo iframe {
    max-width: 100%;
    max-height: 100%;
    width: 600px;
    height: 480px;
}

.singleInfo img,
.mainInfo img {
    max-width: 100% !important;
    height: auto !important;
}
.message_text{
	border: 0px; 
	width:80%;
}
.imgbox img, .imgbox video, .imgbox div.contbox{
    transition: all 0.3s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*transform: scale(1.05);*/
    object-fit: cover;
}
.imgbox_4_3:after {
    margin-top: 75%;
}